Mapper Write Key Value Repo
open class MapperWriteKeyValueRepo<FromKey, FromValue, ToKey, ToValue>(to: WriteKeyValueRepo<ToKey, ToValue>, mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>) : WriteKeyValueRepo<FromKey, FromValue> , MapperRepo<FromKey, FromValue, ToKey, ToValue>
Content copied to clipboard
Constructors
Link copied to clipboard
fun <FromKey, FromValue, ToKey, ToValue> MapperWriteKeyValueRepo(to: WriteKeyValueRepo<ToKey, ToValue>, mapper: MapperRepo<FromKey, FromValue, ToKey, ToValue>)
Content copied to clipboard
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Will unset as batch data with values from toUnset. Must pass the Keys which were successfully removed in repo to onValueRemoved
Properties
Link copied to clipboard
This flow must emit data each time when data by Key has been changed with set method or in any other way excluding cases of data removing
Link copied to clipboard
This flow must emit data each time when data by Key has been removed with unset/unsetWithValues methods or in any other way
Link copied to clipboard
open override val valueMapper: SimpleSuspendableMapper<FromValue, ToValue>
Content copied to clipboard